   /* ---------- LUXURY ATMOS HERO ---------- */
    .contact-hero {
        position: relative;
        width: 100%;
        height: 50vh; /* Grand entrance */
        display: flex;
        justify-content: center;
        align-items: center;
        background: #0B233F;
        overflow: hidden;
    }

    /* Immersive Atmos Background */
    .hero-bg-blur {
        position: absolute;
        inset: -50px;
        background: url(https://png.pngtree.com/thumb_back/fh260/background/20230519/pngtree-disclaimed-culpability-image_2630415.jpg);
        background-size: cover;
        background-position: center;
        filter: blur(20px) brightness(0.3) saturate(0.8);
        opacity: 0.8;
        z-index: 1;
        animation: atmos-drift 20s infinite alternate ease-in-out;
    }

    @keyframes atmos-drift {
        from { transform: scale(1.05) translate(0, 0); }
        to { transform: scale(1.15) translate(-2%, -2%); }
    }

    /* Moving Light Streak */
    .contact-hero::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(216, 153, 58, 0.05) 0%, transparent 40%);
        z-index: 2;
        animation: light-streak 10s infinite linear;
        pointer-events: none;
    }

    @keyframes light-streak {
        0% { transform: translate(-30%, -30%); }
        100% { transform: translate(30%, 30%); }
    }

    .contact-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at center, transparent 30%, #0B233F 90%);
        z-index: 3;
    }

   /* Dark overlay */
   .contact-hero .overlay {
       position: absolute;
       width: 100%;
       height: 100%;
       background: #00000091;
       backdrop-filter: blur(5px);
       top: 0;
       left: 0;
   }


   /* Text content */
   .hero-content {
       position: relative;
       z-index: 10;
       text-align: center;
   }

    /* Premium Glass Breadcrumb */
    .breadcrumb-pill {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 25px;
        border-radius: 100px;
        margin-bottom: 30px;
        font-family: "NeueHaas", sans-serif;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .breadcrumb-pill a {
        color: #D8993A;
        text-decoration: none;
        font-weight: 700;
        transition: color 0.3s ease;
    }

    .breadcrumb-pill a:hover {
        color: #fff;
    }

   .hero-content h1 {
        font-family: "Rockwell", serif;
        font-size: clamp(56px, 12vw, 120px);
        color: #ffffff;
        letter-spacing: -4px;
        margin: 0;
        text-shadow: 0 20px 60px rgba(0,0,0,0.8);
        line-height: 0.9;
   }

   /* Breadcrumb */
   .breadcrumb {
       display: flex;
       justify-content: center;
       gap: 8px;
       font-size: 15px;
   }


/* ---------- LIGHT LUMINOUS NEXUS SECTION ---------- */
.contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdfcfb; /* Premium Off-White */
    padding: 100px 5%;
    overflow: hidden;
}

/* Section Radial Glow (Soft Gold) */
.contact-section::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216, 153, 58, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* Left Visual Column */
.left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.nexus-visual {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.nexus-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(11, 35, 63, 0.15));
    animation: nexus-float 6s infinite ease-in-out;
}

@keyframes nexus-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.nexus-info-snippet {
    font-family: "NeueHaas", sans-serif;
    color: rgba(11, 35, 63, 0.5); /* Deep Navy Muted */
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Right Form Column: Light Luminous Card */
.right-side.luminous-card {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(11, 35, 63, 0.05);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(11, 35, 63, 0.08), 
                0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
}

.right-side h2 {
    font-family: "Rockwell", serif;
    font-size: 42px;
    color: #0B233F; /* Deep Obsidian */
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.right-side p {
    font-family: "NeueHaas", sans-serif;
    color: rgba(11, 35, 63, 0.6);
    margin-bottom: 40px;
    font-size: 15px;
}

/* Premium Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.input-group {
    position: relative;
    width: 100%;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(11, 35, 63, 0.1);
    padding: 12px 0;
    color: #0B233F;
    font-family: "NeueHaas", sans-serif;
    font-size: 16px;
    outline: none;
    transition: all 0.4s ease;
}

/* Expanding Underline Effect */
.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #D8993A;
    box-shadow: 0 0 15px rgba(216, 153, 58, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.contact-form input:focus ~ .input-focus-line,
.contact-form textarea:focus ~ .input-focus-line {
    width: 100%;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

/* Luxury Gold Button */
.cta-btn {
    margin-top: 20px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #D8993A 0%, #B67F2D 100%);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-family: "NeueHaas", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(216, 153, 58, 0.3);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(216, 153, 58, 0.5);
    color: #fff;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .left-side {
        align-items: center;
    }
    .right-side {
        width: 100%;
        padding: 40px;
    }
}
   /* RESPONSIVE */
   @media(max-width: 900px) {
       .contact-section {
           flex-direction: column;
           padding: 60px 0px !important;
       }

       .left-side,
       .right-side {
           width: 100%;
       }

       .message-title {
           font-size: 25px;
       }

       .message-desc {
           font-size: 13px;
       }

       .row {
           flex-direction: column;
       }
   }

   /* RESPONSIVE */
   @media(max-width: 1300px) {
       .contact-section {
           flex-direction: column;
           padding: 60px 10pc;
       }

       .left-side,
       .right-side {
           width: 100%;
       }


   }

   @media (max-width: 768px) {
       .contact-hero {
           height: auto;
           padding: 120px 16px 60px 16px;
       }

       .hero-content h1 {
           font-size: 30px;
       }

       .contact-section {
           padding: 50px 16px !important;
           gap: 30px;
       }

       .right-side {
           width: 100%;
           padding: 32px 18px;
       }

       .row1 {
           flex-direction: column;
       }
   }